home *** CD-ROM | disk | FTP | other *** search
/ Paparazzi!: Tales of Tinseltown / Paparazzi - Tales of Tinseltown (1995)(Activision)(Disc 1 of 2).iso / pprazia2.dir / 00828_Script_Alien Flee < prev    next >
Text File  |  1995-05-21  |  859b  |  44 lines

  1. on mouseDown
  2.   global ZappedOrNot
  3.   put the movietime of sprite 48 into ZappedOrNot
  4.   if ZappedOrNot >= 1200 then 
  5.     puppetsound 0
  6.     exit
  7.   end if
  8.   put "Flee" into f
  9.   put "FleeHL" into fHL
  10.   hiliter 8, f, fHL
  11.   puppetsound "flee.aif"
  12.   updatestage
  13. end
  14.  
  15.  
  16.  
  17. on mouseUp
  18.   global gTheDay, themovieName, ZappedOrNot, snap1, snap2
  19.   
  20.   if ZappedOrNot >= 1200 then 
  21.     puppetsound 0
  22.     exit
  23.   end if
  24.   WhatDayIsIt
  25.   set the castNum of sprite 8 = cast "Flee"
  26.   repeat with d = 7 to 10
  27.     puppetSprite d, false
  28.   end repeat
  29.   puppetsprite 48, false
  30.   --set the DirectToStage of cast theMovieName to 0
  31.   set the sound of cast themovieName to 0
  32.   updatestage
  33.   
  34.   if snap1 <> 0 then
  35.     go frame "AlienDarkroom"
  36.     puppetsound 0
  37.     exit
  38.   else
  39.     go frame gtheday & "NoShots"
  40.     puppetsound 0
  41.     exit
  42.   end if
  43. end
  44.